home *** CD-ROM | disk | FTP | other *** search
/ Internet Info 1994 March / Internet Info CD-ROM (Walnut Creek) (March 1994).iso / networking / ip / ka9q / MNetsrc.hqx / Mac TCP_IP Source v.33 / Other Files.SIT / amiga.h < prev    next >
Text File  |  1989-01-13  |  283b  |  12 lines

  1. /* Asynch controller control block */
  2. #define MAX_STORE 1024
  3. struct asy {
  4.     int speed;        /* Line speed */
  5.     char *tty;
  6.     char recv_buf[MAX_STORE];
  7. };
  8. extern struct asy asy[];
  9. extern unsigned nasy;        /* Actual number of asynch lines */
  10. #define    ASY_MAX    1        /* Two asynch ports on the PC */
  11.  
  12.